home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_TOOL / TOOLS / TOOLS_WI / ICON_8 / CALLING_ / EXTCALL.C < prev    next >
C/C++ Source or Header  |  1990-04-08  |  416b  |  22 lines

  1. #include "../h/config.h"
  2. #include "../h/rt.h"
  3. #include "rproto.h"
  4.  
  5. #ifdef ExternalFunctions
  6.  
  7. /*
  8.  * extcall - stub procedure for external call interface.
  9.  */
  10. dptr extcall(dargv, argc, ip)
  11. dptr dargv;
  12. int argc;
  13. int *ip;
  14.    {
  15.    *ip = 216;            /* no external function to find */
  16.    return (dptr)NULL;
  17.    }
  18.  
  19. #else                    /* ExternalFunctions */
  20. static char x;            /* prevent empty module */
  21. #endif                     /* ExternalFunctions */
  22.